/* Add animation to normal selector as well, besides hover selector */ div { background-color: #333; transition: background-color 400ms; } div:hover { background-color: #000; transition: background-color 400ms; }